home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntlb20 / lib / makefile.32 < prev    next >
Makefile  |  1992-05-15  |  731b  |  36 lines

  1. # Makefile for the GCC TOS library (32 bit int default)
  2.  
  3. CC= c:\gnu\bin\gcc.ttp
  4. CPP=c:\gnu\bin\gcc-cpp.ttp
  5. AR= c:\gnu\bin\gcc-ar.ttp
  6. AS= $(CC)
  7. LIB = c:\gnu\lib
  8.  
  9.  
  10. COPTS= -O -Wall -fomit-frame-pointer -fstrength-reduce -DNDEBUG $(XFLAGS)
  11.  
  12. # normal CFLAGS
  13. CFLAGS= $(COPTS)
  14.  
  15. # CFLAGS sans -fomit-frame-pointer
  16. CFFLAGS = -O -Wall -DNDEBUG
  17.  
  18. # cflags for stuff that needs to be compiled with 32 bit ints
  19. # (this def is needed for the common include file)
  20. CLFLAGS= $(CFLAGS)
  21.  
  22. # flags to $(CC) when it runs the assembler only
  23. ASFLAGS= -c
  24.  
  25. # pre-processor flags
  26. PPFLAGS= -P -DNDEBUG
  27.  
  28. # library targets
  29. CLIB= gnu.olb
  30. IIOLIB= iio.olb
  31.  
  32. # the stuff to make
  33. ALL= $(CLIB) $(IIOLIB) crt0.o gcrt0.o
  34.  
  35. include mincl
  36.